home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19981211-19990422 / 000422_news@watsun.cc.columbia.edu _Mon Mar 29 17:19:28 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@watsun.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id RAA23822
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 29 Mar 1999 17:19:27 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id RAA17645
  7.     for kermit.misc@watsun.cc.columbia.edu; Mon, 29 Mar 1999 17:19:26 -0500 (EST)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: setting up kermit
  11. Date: 29 Mar 1999 22:19:20 GMT
  12. Organization: Columbia University
  13. Message-ID: <7dou98$h7a$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <7doss4$vi6$1@nnrp1.dejanews.com>,  <jf3@my-dejanews.com> wrote:
  17. : I had tried DIAL earlier and while I could use it when I was manually
  18. : dialing and everything worked (I could interact with the paging service),
  19. : when I put it into a script it would dial, but then it seemed the the next
  20. : OUTPUT statement would not send anything out. My terminail would say
  21. : something like "call ended at time:day".  Then it would redial and try
  22. : again.
  23. : However, when I put in the "set carrier-watch off", the whole thing works
  24. : like a charm!  Thanks for your help!!
  25. Well, when dialing a numeric pager, the DIAL command won't succeed because
  26. it's looking for a CONNECT message (and/or Carrier Detect) from the modem,
  27. which of course never happens if it's not dialing another modem.
  28.  
  29. I had forgotten that you were trying to send a numeric page.  What I should
  30. have done was refer you to:
  31.  
  32.   http://www.columbia.edu/kermit/pagers.html
  33.  
  34. which shows you the real way to do this, namely with the PDIAL rather than
  35. DIAL command:
  36.  
  37.   set modem type hayes
  38.   set line /dev/cua
  39.   set speed 2400
  40.   pdial 7654321@123456#
  41.  
  42. or if your modem does not support the "wait for quiet answer" feature (@): 
  43.  
  44.   pdial 7654321,,,,123456#
  45.  
  46. - Frank